home *** CD-ROM | disk | FTP | other *** search
- #ifndef __SOLUTION_H__
- #define __SOLUTION_H__
-
- // Do not modify this file
-
- #include <MacTypes.h>
- #include <Files.h>
-
- #ifdef __cplusplus
- extern "C" {
- #endif // __cplusplus
-
- typedef struct Node {
- SInt32 xCoord;
- SInt32 yCoord;
- } Node;
-
- pascal void Perimeter(
- UInt32 numHomes,
- const Node homesToEnclose[],
- UInt32 *numNodesInPerimeter,
- UInt32 nodesInPerimeter[]
- );
-
- #ifdef __cplusplus
- }
- #endif // __cplusplus
-
- #endif // __SOLUTION_H__